home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / A_C / AEGIS_11.ZIP / UPDATE.BAT < prev    next >
DOS Batch File  |  1994-05-21  |  979b  |  40 lines

  1. @echo off
  2. cls
  3. echo AEGIS: Guardian of the Fleet -- Patch 0002
  4. echo ------------------------------------------
  5. echo.
  6. echo.
  7. if "%1"=="" goto usage
  8. if exist %1\sorcery\aegis\aegis.exe goto update
  9. if exist %1\sorcery\aegis\aegisv.exe goto update
  10. goto err
  11.  
  12. :UPDATE
  13. echo copying update files. Please wait...
  14. copy update02.exe %1\sorcery\aegis > NUL
  15. echo updating old files. Please wait... 
  16. %1
  17. cd \sorcery\aegis
  18. update02.exe 
  19. del update02.exe
  20. goto end
  21.  
  22. :ERR
  23. echo Could not locate the AEGIS files in %1\sorcery\aegis directory. Please check 
  24. echo to be sure that the drive letter and the path names are correct.
  25. echo.
  26. goto end
  27.  
  28. :USAGE
  29. echo Usage: UPDATE [drive letter]:
  30. echo.
  31. echo To update your version of AEGIS, type "UPDATE" followed by a space and the 
  32. echo drive letter where the \sorcery\aegis directory is located.  (Don't forget 
  33. echo to put a colon after the drive letter).
  34. echo.
  35. echo Example Usage:  UPDATE C:[enter]
  36. goto end
  37.  
  38. :END
  39. echo.
  40.